home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / gfx / misc / ADProRunner.lha / ADProRunner / Install ADProRunner < prev    next >
Text File  |  1993-11-07  |  2KB  |  106 lines

  1. ;script to install ADProRunner 
  2.  
  3. (complete 0)
  4.  
  5. ;Get directory to install ADProRunner in.
  6. (set destdir 
  7.     (askdir 
  8.         (prompt "In which drawer should ADProRunner be installed?") 
  9.         (help @askdir-help)
  10.         (default (tackon @default-dest "Utilities"))
  11.     )
  12. )
  13.  
  14. (complete 10)
  15.  
  16. ;Copy AmigaGuide files to destination.
  17.  
  18. (set installfiles
  19.     (askoptions
  20.         (prompt "Which of the following optional programs/helpfile should be installed")
  21.         (help @askoptions-help)
  22.         (choices "ADProRunner requires Cando.library (9 KB)" "ADProRunner StandAlone (135 KB)" "ADProRunner.Guide (Requires Multiview)")
  23.         (default 7)
  24.     )
  25. )
  26.  
  27. (complete 30)
  28.  
  29. ;Copy program files to destination.
  30. (if (BITAND installfiles 1)
  31. (copyfiles
  32.     (source "ADProRunner")
  33.     (dest destdir)
  34. )
  35. )
  36. (if (BITAND installfiles 1)
  37. (copyfiles
  38.     (source "ADProRunner.info")
  39.     (dest destdir)
  40. )    
  41. )
  42.  
  43. (complete 40)
  44.  
  45. (if (BITAND installfiles 2)
  46. (copyfiles
  47.     (source "ADProRunner_NoLib")
  48.     (dest destdir)
  49. )
  50. )
  51.  
  52. (if (BITAND installfiles 2)
  53. (copyfiles
  54.     (source "ADProRunner_NoLib.info")
  55.     (dest destdir)
  56. )    
  57. )
  58. (complete 60)
  59.  
  60. (if (BITAND installfiles 4)
  61. (copyfiles
  62.     (source "Help/ADProRunner.guide")
  63.     (dest "help:english/")
  64. )
  65. )
  66.  
  67. (if (BITAND installfiles 4)
  68. (copyfiles
  69.     (source "Help/ADProRunner.guide.info")
  70.     (dest "help:english/")
  71. )
  72. )
  73.  
  74. (complete 70)
  75.  
  76. (set ADProRunner_dir "env:")
  77.  
  78. (if (NOT (exists ADProRunner_dir (noreq)))
  79.     (set ADProRunner_dir "S:")
  80. )
  81.  
  82. (copyfiles
  83.     (source "Prefs/ADProRunner.prefs")
  84.     (dest ADProRunner_dir)
  85. )
  86.  
  87. (set ADProRunner_dir "envarc:")
  88.  
  89. (if (NOT (exists ADProRunner_dir (noreq)))
  90.     (set ADProRunner_dir "S:")
  91. )
  92.  
  93. (copyfiles
  94.     (source "Prefs/ADProRunner.prefs")
  95.     (dest ADProRunner_dir)
  96. )
  97.  
  98. (complete 80)
  99.  
  100. ;Correct @default-dest so that final information is correct.
  101. (set @default-dest destdir)
  102.  
  103. (complete 100)
  104.  
  105. (exit)
  106.